home *** CD-ROM | disk | FTP | other *** search
/ .net (Turkey) 1998 March / .net Internet Dergisi - CD 5.iso / mac / netCD41 / DEMO16.DIR / 00159_Script_159 < prev    next >
Text File  |  1997-12-08  |  717b  |  31 lines

  1. on enterFrame
  2.   global pointCursor
  3.   repeat with n = 23 to 28
  4.     if rollover(n) then
  5.       if not the puppet of sprite n then
  6.         puppetSprite n, TRUE
  7.         set the cursor of sprite n to pointCursor
  8.         set the member of sprite n to the number of the member of sprite n +1
  9.       end if
  10.     else
  11.       puppetSprite n, FALSE
  12.     end if
  13.   end repeat
  14.   
  15.   repeat with n = 7 to 9
  16.     if rollover(n) then
  17.       if not the puppet of sprite n then
  18.         puppetSprite n, TRUE
  19.         set the cursor of sprite n to pointCursor
  20.         set the blend of sprite n to 100
  21.       end if
  22.     else
  23.       puppetSprite n, FALSE
  24.     end if
  25.   end repeat
  26.   
  27. end
  28.  
  29. on exitFrame
  30.   go to the frame
  31. end